home *** CD-ROM | disk | FTP | other *** search
- Stage.scaleMode = "noScale";
- myListener = new Object();
- _root.Image._x = (750 - Stage.width) / 2;
- _root.Image._y = (500 - Stage.height) / 2;
- myListener.onResize = function()
- {
- _root.Image._x = (750 - Stage.width) / 2;
- _root.Image._y = (500 - Stage.height) / 2 + 20;
- _root.FirmTools._x = (750 - Stage.width) / 2;
- _root.FirmTools._y = (500 - Stage.height) / 2;
- cash._y = 490 + (Stage.height - 500) / 2;
- Description._y = 480 + (Stage.height - 500) / 2;
- };
- Stage.addListener(myListener);
- i = 0;
- while(i < images.length)
- {
- if(i != 0)
- {
- duplicateMovieClip("t0","t" + i,16384 + i);
- }
- _root["t" + i].myinvisible = 1;
- _root["t" + i].thm = images[i].thm;
- _root["t" + i].src = images[i].src;
- _root["t" + i].num = i;
- _root["t" + i]._alpha = 0;
- i++;
- }
-